/* Footer Section */
.footer-section {
    background-color: #1a1a1a;
    color: #f8f9fa;
    padding: 20px!important;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .footer-content {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 20px!important;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px!important;
  }
  
  .footer-logo {
    margin-left: 15px!important;
    font-family: "Carattere", serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-logo:hover {
    color: #e9c46a;
  }
  
  .restuarant {
    color: #e9c46a;
  }
  
  .footer-desc {
    line-height: 1.6;
    color: #adb5bd;
    font-size: 1rem;
    max-width: 90%;
  }
  .footer-center {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e9c46a;
  }
  .linku{
    width: 40px;
    height: 40px;
  }
  .linku i{
    font-size: 30px!important;
  }
  
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .footer-nav li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
  } 
  .footer-nav li a:hover {
    color: #e9c46a;
    padding-left: 1.5rem;
  }
  
  .footer-nav li a:hover::before {
    left: 0;
    opacity: 1;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 30px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #adb5bd;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin-bottom: 10px!important;
  }
  
  .contact-item i {
    font-size: 1.2rem;
    color: #e9c46a;
    min-width: 24px;
  }
  
  .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-item:hover,
  .contact-item:hover a {
    color: #ffffff;
  }
  
  .social-media-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .social-media-footer a {
    color: #adb5bd;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .social-media-footer a:hover {
    color: #e9c46a;
    transform: translateY(-3px);
  }
  .footer-bottom {
    border-top: 1px solid #2e2e2e;
    padding: 1.5rem 0;
    text-align: center;
    color: #adb5bd;
    font-size: 0.9rem;
  }
  .footer-bottom p,.footer-bottom a{
    margin-top: 10px!important;
  }
  .footer-bottom a{
    color: #e9c46a;
    
  }
  .footer-bottom a:hover{
    color: #ffb700;
    transition: all 0.3s;
  }
  .footer-bottom strong {
    color: #e9c46a;
    font-weight: 600;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-left {
      grid-column: 1 / -1;
      text-align: center;
      align-items: center;
    }
    
    .footer-desc {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer-center, .footer-right {
      text-align: center;
      align-items: center;
    }
    
    .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    .footer-desc{
        font-size: 13px;
    }
    
    .footer-nav li a {
      padding-left: 0;
    }
    
    .footer-nav li a:hover {
      padding-left: 1rem;
    }
    
    .contact-item {
      justify-content: center;
    }
    
    .social-media-footer {
      justify-content: center;
    }
    .footer-bottom p,.footer-bottom a{
        font-size: 13px;
        margin-top: 10px!important;
    }
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .footer-section {
    animation: fadeInUp 0.8s ease forwards;
  }
  
  /* Accessibility Improvements */
  .footer-nav li a:focus,
  .social-media-footer a:focus,
  .contact-item a:focus {
    outline: 2px solid #e9c46a;
    outline-offset: 3px;
  }
  
  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .footer-section {
      background-color: #121212;
    }
  }
